home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 196_01 / bit_np01.doc < prev    next >
INI File  |  1985-11-13  |  1KB  |  49 lines

  1. [BIT-NP01.DOC of JUGPDS Vol.19]
  2.  
  3.         Examples of Answers to  Some BIT Nano-Pico Quizes
  4.                      by Toshiya Ohta (No.14)
  5.                 June 13, 1985
  6.  
  7.     These programs were published in the Nano-Pico Quize Columns of 
  8. BIT (The computer science magazine, Kyoritsu Publ.).  Source programs were
  9. written in Fortran-80. The Japanese documentation will be appeared in 
  10. JUG-CP/M Newsletter Vol.2, No.4. November, 1985.
  11.  
  12. 1. BIT78031
  13.    Language: Fortran-80, Programmer: S. Kihira
  14.    Required memory: 10K
  15.  
  16.   I/O: Console [O] 
  17.  
  18.   Source: bit, March 1978.
  19.  
  20. Question: Find combinations of four integers (1,2,6,9) which will
  21.           result in between 70 and 90 (both included) by arthmetic.
  22.           Example: 77 = (9 + 2)*(6 + 1)
  23.  
  24. 2. BIT78032
  25.    Language: Fortran-80, Programmer: H. Nozaki
  26.    Required memory: 8K
  27.  
  28.   I/O: Console [O] 
  29.  
  30.   Source: bit, March 1978. (A modified version is in bit, July 1978.)
  31.  
  32. Q1: Make the table for the function:
  33.         g(n) = 2**(log n), 1 <= n =<105.
  34. Q2: Find g(52), g(53), and g(105).
  35.  
  36. Note by T.O.: Exact solution for Q2 is not possible by Fortran-80.
  37.  
  38. 3. BIT78061
  39.    Language: Fortran-80, Programmer: S. Hitotsumatsu
  40.    Required memory: 8K
  41.  
  42.   I/O: FORT05.DAT [I] sequntial
  43.        Console [O] 
  44.  
  45.   Source: bit, June 1978. 
  46.  
  47. Q1: Solve Four-color problem by Tate's algorithm.
  48.  
  49.